home *** CD-ROM | disk | FTP | other *** search
/ infoROM 17,000 Product Descriptions for Business / infoROM Product Descriptions for Business - ESX Interactive.ISO / argdemos / kamel / readme.@do < prev    next >
Encoding:
Text File  |  1992-09-25  |  4.0 KB  |  108 lines

  1. ************ FastLook Version 6.0 Manual Revisions ***********
  2.  
  3.      DLL Support:
  4.  
  5. To clear the drawing windows, use the DrawDwgFile command with a null
  6. string ("") as the value of the drawing name.
  7.  
  8.  
  9. New FastLook DLL calls
  10.  
  11.  
  12. BOOL FAR PASCAL PlaceDwgNote(int Channel, char FAR * Note,
  13.                              double XPos, double YPos,
  14.                              int Color, double Height,
  15.                              char FAR * Length);
  16.  
  17.      This function will draw the text specified by Note at the AutoCAD
  18.      coordinates XPos and YPos using the color specified by Color. The
  19.      length of the text in AutoCAD drawing units is returned as ASCII text
  20.      in the variable Length.  Use a Color value of -1 to calculate the
  21.      length of the text without drawing the text on the screen.
  22.  
  23.      Return values:
  24.           0  = Text was drawn successfully.
  25.           -1 = Channel is not open.
  26.  
  27.  
  28.  
  29. BOOL FAR PASCAL PlaceRectangle(int Channel, double UpperX, double UpperY,
  30.                               double LowerX, double LowerY, int Color);
  31.  
  32.  
  33.      This function will draw a rectangle at the AutoCAD coordinates
  34.      specified using the color specified by Color.
  35.  
  36.      Return values:
  37.           0  = Rectangle was drawn successfully.
  38.           -1 = Channel is not open.
  39.  
  40.  
  41.  
  42. Actually, the above descriptions say "AutoCAD coordinates" but these two
  43. functions should work on any file FastLook supports.  The only difference
  44. is the type of coordinates you have to use.  Scanned images that contain
  45. a DPI setting will use inches, HPGL files will use plotter units (1000 dpi),
  46. and bitmap images will use pixels.
  47.  
  48.  
  49.  
  50. BOOL FAR PASCAL SetRegenClickInt(int Channel, int DX1, int DY1)
  51.  
  52.      FastLook sends the parent window (your application) a mouse click
  53.      at screen coordinates DX1 and DY1 to notify your application that
  54.      the drawing window has been repainted.  Call the SetRegenClickInt
  55.      function to change the mouse click coordinates. The default
  56.      coordinates are -4,-4.
  57.  
  58.  
  59.  
  60. DLL/DDE Message Support:
  61.  
  62. An additional function number (404) has been added to the 
  63. SendFLCommand (DLL) and the Message function (DDE) to cancel Redline
  64. and Linking modes.
  65.  
  66.  
  67.  
  68. FASTLOOK.INI File:
  69.  
  70. The FASTLOOK.INI file has been added mainly for the Network version but 
  71. is included with the Single version of FastLook. The intent of this file
  72. is give the ability to limit the users access to various functions in 
  73. FastLook. This file must reside in the FastLook Plus program directory
  74. to be used. The values found in the initialization file are listed below.
  75. If the value is set to 1, the functionality that the value represents 
  76. is enabled. Setting it to 0 disables it.
  77.  
  78. Copy=1            Controls the Copy command under the File Menu
  79. Rename=1        Controls the Rename command under the File Menu
  80. Delete=1        Controls the Delete command under the File Menu
  81. View=1            Controls the View command under the File Menu
  82. Acad=1            Controls the ACAD command under the File Menu
  83. Export=1        Controls the Export command under the File Menu
  84. Print=1            Controls the Print command under the File Menu
  85. Redline=1        Controls access to editing redlining
  86. RedlinePref=1        Controls access to the Redline Preferences dialog
  87. Link=1            Controls access to editing links
  88. Screen=1        Controls access to the Screen option command
  89. Configuration=1        Controls access to the Configuration option command
  90. Accuracy=1        Controls access to the Accuracy option command
  91. Directories=1        Controls access to the Directories option command
  92.  
  93.  
  94. FastLook Plus Color Palette
  95.  
  96. If you use FastLook with a 16 color driver, FastLook will use AutoCAD 
  97. 16 color palette when viewing AutoCAD files.  If you use a driver with
  98. more than 16 colors, FastLook will use the AutoCAD 256 color palette.  
  99. This will result in the color numbers above 7 to display different than 
  100. the 16 color version of AutoCAD. You can force FastLook to use the 16 
  101. color palette by adding the following line to your FLUSER.INI file
  102. in the Windows directory.
  103.  
  104. Acad16Colors=1
  105.  
  106. Setting Acad16Colors to 0 allows FastLook to use the 256 color palette 
  107. again.
  108.